home *** CD-ROM | disk | FTP | other *** search
/ Java Certification Exam Guide / McGrawwHill-JavaCertificationExamGuide.iso / pc / Web Links and Code / ans / chap1 / exer0119 / Example.java
Encoding:
Java Source  |  1997-04-19  |  178 b   |  8 lines

  1. public class Example {
  2.    public static double[] d = new double[3];
  3.    static {
  4.       for (int index = 0; index < d.length; d++)
  5.          d[index] = Math.random();
  6.    }
  7. }
  8.